home *** CD-ROM | disk | FTP | other *** search
- /*
- * File: DZGame.h
- * Author: Dan Venolia
- *
- * Copyright © 1996 Apple Computer, Inc.
- */
-
- #ifndef __DZGame__
- #define __DZGame__
-
- #include <Types.h>
-
- #include <QD3D.h>
-
- // These are maintained by Game_Process
- extern float gGameInterval;
- extern float gGameFramesPerSecond;
-
-
- void Game_Init(
- void);
-
- void Game_Exit(
- void);
-
- void Game_KeyDown(
- unsigned long inChar,
- unsigned long inKeyCap);
-
- void Game_Process(
- void);
-
- void Game_Submit(
- TQ3ViewObject inView);
-
- #endif /* __DZGame__ */